Hi,
Can anybody show me an install.sh file that works for installing python packages?
The suggestion in the README
#!/bin/bash
python3.6 -m pip install --sytem --target . numpy
python3.6 -m pip install --sytem --target . scipy
python3.6 -m pip install --sytem --target . networkx
gives the error
End of install.sh stdout. stderr as follows:
Usage:
/usr/bin/python3.6 -m pip install [options] <requirement specifier> [package-index-options] ...
/usr/bin/python3.6 -m pip install [options] -r <requirements file> [package-index-options] ...
/usr/bin/python3.6 -m pip install [options] [-e] <vcs project url> ...
/usr/bin/python3.6 -m pip install [options] [-e] <local project path> ...
/usr/bin/python3.6 -m pip install [options] <archive url/path> ...
no such option: --system
and the the example on The Halite III Server Environment also gives an error.
What is the command that does work?