to update all installed packages How to install Python on a Linux server without rootdownload python 3wget http://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz or python 2 wget --no-check-certificate https://www.python.org/ftp/python/2.7.8/Python-2.7.8.tgz decompress tar -xzf Python-3.5.1.tgz run 'configure' and define your install directory (adapt path to your directory of read-write access)
cd Python-3.5.1 ./configure prefix=/home/user/python
add your Python path in ~/.bashrc export PYTHONPATH=/home/user/python/bin:$PYTHONPATH export PATH=/home/user/python/bin:$PATH or, run python using full path
/home/user/python/bin/python3.5 → Install python packages (pip install)# install the package NumPyAlternative: Anaconda Python distribution
# download and install setuptools (add your local python path) wget --no-check-certificate https://bootstrap.pypa.io/ez_setup.py -O - | /home/user/python/bin/python3 run easy_install for installing packages 'numpy' and 'Bio'-python /home/user/python/bin/easy_install numpy /home/user/python/bin/easy_install -f http://biopython.org/DIST/ biopython |
Starting > Download & Install >