Merge pull request #80 from nmay231/help-scripts

Added help scripts
This commit is contained in:
Daniel Perez 2020-12-15 12:05:12 +00:00 committed by GitHub
commit 8078f74efb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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.
'