doc and documentation improvements

This commit is contained in:
Gene Hoffman 2020-04-06 01:19:25 -07:00
parent 53f6cd580b
commit 837b1f4261
No known key found for this signature in database
GPG Key ID: AE8989DA18CADC80
3 changed files with 3 additions and 5 deletions

View File

@ -4,8 +4,6 @@ If you want to run a timelord on Linux, you must install the wheel from source (
```
. ./activate
pip install --force --no-binary chiavdf chiavdf==0.12.1
# or
sh install-timelord.sh
```

View File

@ -1,3 +1,5 @@
echo "This requires the chia python virtual environment."
echo "Execute '. ./activate' if you have not already, before running."
THE_PATH=`python -c 'import pkg_resources; print( pkg_resources.get_distribution("chiavdf").location)' 2> /dev/null`/vdf_client
CHIAVDF_VERSION=`python -c 'from setup import dependencies; t = [_ for _ in dependencies if _.startswith("chiavdf")][0]; print(t)'`
@ -7,8 +9,6 @@ if [ `uname` = "Linux" ] && type apt-get;
echo "Found Ubuntu/Debian"
fi
echo "This script assumes it is run from the chia venv - '. ./activate' before running."
if [ -e $THE_PATH ]
then
echo $THE_PATH

View File

@ -23,7 +23,7 @@ then
INSTALL_PYTHON_VERSION=`find_python`
fi
# Manage npm and other install requirements on an OS specific basis
if [ `uname` = "Linux" ]; then
#LINUX=1
if type apt-get; then