Sudo Pip Install -e
I faced the line below when I installed geonode for development. sudo pip install -e . Here is the link: http://docs.geonode.org/en/master/tutorials/admin/install/custom_install.h
Solution 1:
Pip install Options:
-e, --editable <path/url> Install a project in editable mode (i.e. setuptools "develop mode") froma local project path or a VCS url.
-r, --requirement <file> Install from the given requirements file. This option can be used multiple times.
In sudo pip install -e .
The .
specifies the current directory path and the above pip command will try to search for setup.py file to install the project in develop mode.
Post a Comment for "Sudo Pip Install -e"