Added help scripts

This commit is contained in:
nmay231 2020-12-08 00:17:36 -07:00
parent 6f1b8acb3a
commit 6465373549
3 changed files with 30 additions and 0 deletions

9
bin/help.config Executable file
View file

@ -0,0 +1,9 @@
# Output should be freeform text. asdf decides how to reformat it.
echo 'asdf-python can automatically install a default set of Python packages with pip right after installing a Python version. To enable this feature, provide a $HOME/.default-python-packages file that lists one package per line, for example:
ansible
pipenv
You can specify a non-default location of this file by setting a ASDF_PYTHON_DEFAULT_PACKAGES_FILE variable.
'

6
bin/help.links Executable file
View file

@ -0,0 +1,6 @@
# Output should be <title>: <link>
echo 'home-page: https://github.com/danhper/asdf-python
dependencies: https://github.com/pyenv/pyenv/wiki#suggested-build-environment
troubleshooting: https://github.com/pyenv/pyenv/wiki/Common-build-problems
'

15
bin/help.overview Executable file
View file

@ -0,0 +1,15 @@
# Output should be freeform text. asdf decides how to reformat it.
echo 'Basic usage:
asdf install python 3.6.12
asdf global python 3.6.12
python -V
Python 3.6.12
Check the asdf documentation for more instructions on how to install & manage versions of Python. Please make sure you have the required system dependencies installed before trying to install Python.
If you use pip to install a module like `ipython` that has binaries, you will need to run `asdf reshim python` for the binary to be in your path.
Under the hood, asdf-python uses python-build (the same backend of pyenv) to build and install Python. Check its readme for more information about build options and the common build problems wiki page for any issues encountered during installation of python versions.
'