Install dev mode in virtualenv #6022
-
I am having some trouble installing the package in the virtual environment with development mode. It only installs with sudo to the whole system. python setup.py develop SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. Please help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I came across the same issue earlier, the cause was that |
Beta Was this translation helpful? Give feedback.
I came across the same issue earlier, the cause was that
monai.egg-info
was created by root within a docker.sudo rm -rf monai.egg-info
thenpython setup.py develop --user
worked for me.