Install Python package from GitHub using PyCharm

前端 未结 5 1802
遥遥无期
遥遥无期 2020-12-05 11:32

I created a VirtualEnv in PyCharm to install my Python packages. I wanted to install this fork of the django project from GitHub.

https://github.com/django-nonrel/dj

5条回答
  •  没有蜡笔的小新
    2020-12-05 12:10

    I was with the same problem, all i did was : Configure the project interpreter to the Python3 inside the venv/scripts you are using the pip install. Remember to activate the venv. That's it , now you can use the pip install on pycharm or on prompot. The problem is that even with the "venv/lib/sitepackeges" in the your project's sys.path the pycharm looks only for the packages where the project interpreter is

提交回复
热议问题