*************************************************** Installing GuitAstro for standard using *************************************************** Prerequisite: You have ever downloaded Guitastro and installed Python. 1. Python setup ********************** For Linux users: .. code-block:: bash cd ~/Documents/guitastro/ sudo python3 setup.py install To uninstall GuitAstro: .. code-block:: bash sudo pip uninstall guitastro For Windows users, open a Powershell as administrator. A quick way to open Powershell as administrator is Win+R (execute commands) and put: .. code-block:: bash powershell Start-Process powershell -Verb runAs Then, in the Powershell terminal: .. code-block:: bash cd C:\Users\xxx\Documents\guitastro\install python setup.py install To uninstall GuitAstro: .. code-block:: bash pip uninstall guitastro 2. Import guitastro from everywhere *********************************** The previous step recorded Guitastro as a package of Python. The simple line "import guitastro" should work: .. code-block:: python import guitastro