From d32c1dfbb3e22b72f48c7e61abd1d09709203325 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Sat, 9 Feb 2019 13:08:28 -0500 Subject: [PATCH] update install for windowz Didn't need to install any build tools Also, venv commands are a bit different. --- INSTALL.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index b1e47b1c4..248f6bce4 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -17,11 +17,6 @@ After installing python 3, you'll need to install some additional libraries depe Once python 3 is installed run `python3 -m pip install virtualenv` to install virtualenv. -### Windows - -Windows users will need to install `Visual C++ Build Tools`, which can be installed by [Microsoft Build Tools](Microsoft Build Tools 2015) - - ### macOS macOS users will need to install [xcode command line tools](https://developer.xamarin.com/guides/testcloud/calabash/configuring/osx/install-xcode-command-line-tools/) and [homebrew](http://brew.sh/). @@ -52,8 +47,13 @@ To install: git clone https://github.com/lbryio/lbry.git cd lbry + Linux/Mac: virtualenv lbry-venv --python=python3.7 source lbry-venv/bin/activate + + Windows: + virtualenv lbry-venv --python=python + lbry-venv\Scripts\activate python --version # Python 2 is not supported. Make sure you're on Python 3.7