I'm trying to install BeautifulSoup on a remote server in my home directory. Do I use pip after ssh'ing onto the server or before? When I try before, it can't seem to find where to install BeautifulSoup: "No such file or directory: '@server'", but if I try after logging into the server, I don't have permissions because it tries to do a system wide installation. Please let me know which process to follow, and any additional specific instructions for installing would be extremely helpful!
Asked
Active
Viewed 1,672 times
0
-
This might help: http://stackoverflow.com/questions/26817341/is-it-possible-to-install-gittle-library/26817507#26817507. – JoErNanO Nov 08 '14 at 16:14
1 Answers
0
When using remote servers on which I don't have root permissions, I find it very useful to use a Python distribution like Anaconda. This is very easy to install and comes many of the popular Python packages (including BeautifulSoup). They also have support for virtual environments and additional python packages can also be installed easily.

Phani
- 3,267
- 4
- 25
- 50