Installation
You should use a recent version of Python 3. Python 2.7 is still supported.
If you need to download Python visit the Python download page.
On Windows you should install it into the recommended path (on Windows this is typically C:\Python39\
) and
add C:\Python39\Scripts\
to the %PATH%
environment variable to be able to run pip
from commandline.
Installation with pip
Simply run:
pip install -i https://pypi.hilster.io htf
If you are using a proxy you must set environment variables or add the --proxy
option.
You need to set https_proxy
and http_proxy
to http(s)://<username>:<password>@<host>:<port>
.
On Linux enter:
export https_proxy=https://<username>:<password>@<host>:<port>
export http_proxy=http://<username>:<password>@<host>:<port>
and on Windows enter:
set https_proxy=https://<username>:<password>@<host>:<port>
set http_proxy=http://<username>:<password>@<host>:<port>
and continue with the installation without the --proxy
option.
Alternatively you can use the --proxy
option:
pip install -i https://pypi.hilster.io --proxy=http(s)://<username>:<password>@<host>:<port> htf
Check Installation
python -c "import hlm"
python -c "import htf"
python -c "import oser"
If the program quits quietly you’re done. If you need to obtain a license read further.
Upgrading
To upgrade add the -U
option:
pip install -i https://pypi.hilster.io -U htf
If you are using a proxy you must add the --proxy
option or set environment variables like described above.
Installing a Specific Version
To install a specific version use
pip install -i https://pypi.hilster.io -U htf==1.0.0
for example.
If you are using a proxy you must add the --proxy
option or set environment variables like described above.