Alternative downloads and installations

Alternative downloads

git

The package is available under git platform (https://github.com/danmoser/pyhdust/)

git clone https://github.com/danmoser/pyhdust.git

The command above saves the package in pyhdust subfolder.

To update the package with git:

git pull

zipball

If neither pip or git are not installed in your system, you can catch the current version as a zipball:

# wget https://github.com/danmoser/pyhdust/zipball/master > pyhdust.zip
curl -L https://github.com/danmoser/pyhdust/zipball/master > pyhdust.zip
unzip pyhdust.zip

Alternative installations

In the downloaded pyhdust folder, type:

python setup.py install

If your are not the root of the system, add the flag --user to the command above.

Note

To use the pyhdust scripts, the binaries path of your pip installation directory must be in system PATH. If you don’t find them, adapt the following command to your $HOME/.bashrc:

PATH=$PATH:~/.local/bin/

Alternatively, to import the modules declare in your ~/.bashrc file:

export PYTHONPATH=$PYTHONPATH:~/pyhdust/
PATH=$PATH:~/pyhdust/scripts/

where ~/pyhdust/ is the package installation directory.

Note

To uninstall pyhdust from the alternative installations, using git you need to remove its folder manually. Using the zipball installation, you can use the following commands:

python setup.py install --record files.txt
cat files.txt | xargs rm -rf

End

Go back to the Main Page.