How do I run this Python project I found on GitHub?

Nebojša Kuzmanović

I am a newbie. This is the project I want to run: https://github.com/app-generator/django-dashboard-atlantis-dark

I installed requirements successfully. When I try to: python manage.py makemigrations, nothing happens.

I tried to google a solution and spent two tons of neurons. If the crying is a solution I would do it.

Hadisur rahman

You do not need this, If you are familiar with how to use Virtual Env. on Pythons project in Windows then nothing to worry. Otherwise you need to create (Env) before running some command line. Just follow these steps below.

01. Check using cmd ...\> py --version if it was installed then follow the below 
    steps
02. cmd ...\> py -m pip install virtualenvwrapper-win 
03. cmd ...\> mkvirtualenv myproject
04. cmd ...\> workon myproject
05. cmd ...\> py -m pip install Django
06. Now Open the project by an IDE you are prefer to be use. Better use Pycharm 
    for python projects.
07. Run  cmd ...\> workon myproject ; then call your project directory and lastly 
    run
08. cmd ...\> py manage.py runserver; if you got an error about table 
     related just use this cmd ...\> py manage.py migrate

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

How do I receive Github Webhooks in Python

How do I receive Github Webhooks in Python

How do I run a Python program?

How do I re-run Github Actions?

how do i publish a organization project to github with intellij

How do I resolve a "'generateDebugSources' not found in project" error?

How do I reconnect my project to my existing GitHub repository

How do I include library from github in python project without pip?

how do I fork an older version of a github project?

How do I organize a Visual Studio project on GitHub.com?

GitHub Action: How do I run commands inside a docker container

How do I manually refactor a python project?

How do I capture the latest GitHub release of a project from the API?

How do I run another file in python?

How do I change a github page to run from a forked repo?

How do I download all submodules of a github project in cocoa?

How do I make an existing project on my machine into a GitHub project?

How do I run pip on python for windows?

How do I revert back to the online branch of a github project?

How do I compile and run a project on github?

How do I fork a github project to a git repo outside github?

How do I migrate an Assembla project (Issues and Source) to Github?

How do i run this "run_scaled" script from github

how do i run an excecutable file for r from github

How do I run a command with spaces in a github workflow

How do I install and run a python script

How do I view my Rust project's documenation on GitHub?

How do I Run python code from github in snowpark?

How do I commit a Vapor project to GitHub?