Skip to content
This repository has been archived by the owner on Nov 2, 2023. It is now read-only.

Latest commit

 

History

History
126 lines (76 loc) · 3.47 KB

installation.rst

File metadata and controls

126 lines (76 loc) · 3.47 KB

Installation

Note

| If you already have python installed in you system please verify that the script folder is in your PATH or you wont be able to call pyscandl. | If you encounter a similar line during the installation it mean that you don't have the script folder in your PATH, add it to it .. image:: ../img/path_prompt.png

Installing python (if not already on your system)

Windows

  1. Download python from their website
  2. Launch the installer
  3. don't forget to add Python to the PATH

python installed annoted

Linux

Install it from your package manager of choice

Mac

I don't have a mac so i can't tell you the best method but like for windows the python installer from their website should work, otherwise you can use brew

This option is recommended for most users, you will have the most stable experience.

  1. install the python program:
pip install pyscandl
  1. enjoy

Updating

When a new release is made you can upgrade your installation using:

pip install pyscandl -U

Using setup.py

This option is recommended for development and people wanting to use the bleeding edge before the releases. Stability is not guaranteed.

  1. install the python program:
git clone https://github.com/Ara0n/pyscandl.git
cd pyscandl
python3 setup.py install
  1. enjoy

Warning

This was the old method used before setup.py and PyPI, i don't recommend to anyone to use this method anymore !

From source

  1. check if you have python3.7 or above installed (modern installations normally have it installed by default now)
  2. check if you have the corresponding pip installed
  3. clone the repository
git clone https://github.com/Ara0n/pyscandl.git
  1. install the dependencies of pyscandl
cd pyscandl
python3 -m pip install -r requirements.txt

Note

the name of the python used might differ depending on your OS and or pythons installed, just be sure to use one with pip and that is python3.7 or higher

The program is now ready to be used, don't forget from time to time to check if new code and features were added and if yes do a git pull

From release

  1. check if you have python3.7 or above installed (modern installations normally have it installed by default now)
  2. check if you have the corresponding pip installed
  3. download the latest release here
  4. install the dependencies of pyscandl
cd pyscandl
python3 -m pip install -r requirements.txt

Note

the name of the python used might differ depending on your OS and or pythons installed, just be sure to use one with pip and that is python3.7 or higher

The program is now ready to be used, don't forget from time to time to check if a new release is out here and if yes download it.

Requirements

The current python requirements are:

../../../requirements.txt