Im trying to install my package via pip from a SVN repository. Version of subversion server is 1.6.11.
I'm using the command below:
pip install -e svn+http://svn.mysite.com/svn/project/project#egg=project
Error [Error 2] Can not find the file while executing command svn checkout -q http://svn.mysite.com/svn/project/project/
Can not find command 'svn'
How can I solve this problem?
Use the pip install -r requirements. txt command to install all of the Python modules and packages listed in your requirements. txt file. This saves time and effort.
The pip install <package> command always looks for the latest version of the package and installs it. It also searches for dependencies listed in the package metadata and installs them to ensure that the package has all the requirements that it needs.
Seems like you don't have subversion installed or is misconfigured.
You can try svn --version
in the terminal to check if you have subversion installed.
If you don't have it installed you can install Subversion via apt, brew or whatever package manager you use and try again.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With