Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Anchor
top1
top1


Info

Know more about how to migrate python about  migration of python version from python2.x to pyhton3.x  on x  on Windows as well as on Linux.


Expand
titlePython Migration on Windows

Python Installation steps to follow on windows:-

  • Download python3.x in system.
  • Set path in PythonHome and PythonPath variable.
  • Run all the packages related to python.


Info

In AWS Machine - Python 2.x is in-built can not be uninstall.


Expand
titlePython Migration On on Linux
  • Run python3.x script on server.

  • Python3.x will be downloaded inside desired path.

  • Update symbolic link to the required path by using following command:

                       ln ln -s /opt/source folder /user/bin/Destination Folder                     

  Example:  ln -s /opt/py3/Python-3.7.4/python /usr/bin/python3                  1.Source Folder- Path where python3.x has downloaded after running shell script of python.

                 2 .Destination Folder - Path where python3.x needs to be update to run python globally.

                       Example:  ln -s /opt/py3/Python-3.7.4/python /usr/bin/python3

               


Back to Top