![]() |
remember me how to delete python2.7 in Linux - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: remember me how to delete python2.7 in Linux (/thread-12122.html) Pages:
1
2
|
remember me how to delete python2.7 in Linux - sylas - Aug-10-2018 Hi all ! Instead of trying to make python3 the default language, it seems to me that deleting python2.7 is preferable. Thanks RE: remember me how to delete python2.7 in Linux - micseydel - Aug-10-2018 If Python 2.7 came preinstalled with your Linux, then uninstalling it will probably break your Linux install. I suggest you do not try to uninstall it. RE: remember me how to delete python2.7 in Linux - sylas - Aug-10-2018 I tried again to install pyenv, which seems very usefull, without success. All concerning pyenv are on my uploads. I prefer the english language, but so it is, sorrysylvain@sylvain-HP-Laptop-15-bw0xx:~/Téléchargements/pyenv-master/pyenv-installemaster$ ls bin MANIFEST.in setup.cfg Vagrantfile LICENSE README.rst setup.py vagrant-salt sylvain@sylvain-HP-Laptop-15-bw0xx:~/Téléchargements/pyenv-master/pyenv-installemaster$ cd bin;ls download-pyenv-package.sh pyenv-installer pyenv-offline-installer sylvain@sylvain-HP-Laptop-15-bw0xx:~/Téléchargements/pyenv-master/pyenv-installemaster/bin$ ls download-pyenv-package.sh pyenv-installer pyenv-offline-installer sylvain@sylvain-HP-Laptop-15-bw0xx:~/Téléchargements/pyenv-master/pyenv-installemaster/bin$ Can somebody help me to install pyenv on the terminal ?? Thanks RE: remember me how to delete python2.7 in Linux - sylas - Aug-10-2018 What enormous task to install "pyenv" !!! RE: remember me how to delete python2.7 in Linux - DeaD_EyE - Aug-10-2018 Try to install libnss3-tools. apt-get install libnss3-toolsNormally Python is built with venv support. Then try again to install Python 3.7 pyenv install 3.7.0If everything works, you can switch the global python version with pyenv and look what breaks. Many packages, not only Python related, do have Python2 dependencies. RE: remember me how to delete python2.7 in Linux - sylas - Aug-10-2018 Thanks to dead_eye. I tried "apt-get install libnss3-tools" with sudo at the head. No problem. But for python3 it always ignores pyenv. How many days to install pyenv?? Is it because I did not sign in Github ?? RE: remember me how to delete python2.7 in Linux - sylas - Aug-10-2018 Please tell me what to do when I am in the Github page:https://github.com/pyenv/pyenv-installer RE: remember me how to delete python2.7 in Linux - DeaD_EyE - Aug-10-2018 The readme says: Quote:Install: RE: remember me how to delete python2.7 in Linux - sylas - Aug-10-2018 sylvain@sylvain-HP-Laptop-15-bw0xx:~$ curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 148 100 148 0 0 148 0 0:00:01 0:00:01 --:--:-- 145 100 2194 100 2194 0 0 1097 0 0:00:02 0:00:02 --:--:-- 271k WARNING: seems you still have not added 'pyenv' to the load path. # Load pyenv automatically by adding # the following to ~/.bash_profile: export PATH="/home/sylvain/.pyenv/bin:$PATH" eval "$(pyenv init -)" eval "$(pyenv virtualenv-init -)" I did that before. Can you help me with the above text. It seems also that the best tool in order to delete python2 is precisely pyenv. Have you already installed pyenv ?? RE: remember me how to delete python2.7 in Linux - DeaD_EyE - Aug-10-2018 I'm using pyenv together with xonsh and some other libraries, which also requires the shared libs and header files. The installation was not easy. The text above must added to your .bash_profile in your home directory. Just edit the file: nano ./.bash_profilethen add this and save the file. Nano: CTRL+X y Enter export PYENV_ROOT="$HOME/.pyenv" export PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init -)"Then close the old and open a new terminal. Look if the environment variables have been set. echo $PATH echo $PYENV_ROOTIn $PATH must a path like: /home/deadeye/.pyenv/bin Path of PYENV_ROOT: /home/deadeye/.pyenv The path was evaluated from the shell before it was added to the environment. Then don't forget, that you need build tools. For debian source 1 [source 2] apt install build-essential apt-get install libssl-dev zlib1g-dev libncurses5-dev libncursesw5-dev libreadline-dev libsqlite3-dev apt-get install libgdbm-dev libdb5.3-dev libbz2-dev libexpat1-dev liblzma-dev tk-devDownload, Build, Install Python 3.7.0 env PYTHON_CONFIGURE_OPTS="--enable-shared" # i used this for nuitka i guess pyenv install 3.7.0If there is an update of python, you can change the current working cd ~/.pyenv , then git pull .Then install the newest version. |