Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows setup instruction in README #1

Open
justinmoon opened this issue Oct 2, 2018 · 6 comments
Open

Windows setup instruction in README #1

justinmoon opened this issue Oct 2, 2018 · 6 comments
Labels

Comments

@justinmoon
Copy link
Owner

No description provided.

@ghost
Copy link

ghost commented Oct 2, 2018

1: I installed the latest Python Windows installer (3.7), and it seems like it now uses py to start Python instead of python or python3. See: https://stackoverflow.com/a/13533958/5503425. You can still add the Python folder to your PATH to allow you to type python as well if you like.

Best bet if having issues is to read through: https://docs.python.org/3/using/windows.html

2: Not sure if the following "virtualenv" lines in Step 4 (https://github.com/superquest/digital-cash#step-4-clone-the-project-with-git-install-dependencies-and-run-it) are relevant for Windows? Didn't seem to work for me, but Jupyter notebook launched fine anyway.

python3 -m virtualenv venv
source venv/bin/activate

@Ivans1310
Copy link

Ivans1310 commented Oct 3, 2018

I have windows and this works for me:

pip install virtualenv (normally pip comes with python3)
python -m virtualenv venv
source venv/Scripts/activate
python -m pip install -r requirements.txt
jupyter notebook

@mirojr
Copy link

mirojr commented Oct 3, 2018

2: Not sure if the following "virtualenv" lines in Step 4 (https://github.com/superquest/digital-cash#step-4-clone-the-project-with-git-install-dependencies-and-run-it) are relevant for Windows? Didn't seem to work for me, but Jupyter notebook launched fine anyway.

python3 -m virtualenv venv
source venv/bin/activate

You can follow this guide: http://timmyreilly.azurewebsites.net/python-pip-virtualenv-installation-on-windows/

@israelvi
Copy link

israelvi commented Oct 3, 2018

For windows:
Note: source command does not exists in Windows

pip install virtualenv
python -m virtualenv venv
venv/Scripts/activate  (this is a .bat file, after that, you should see a label (venv) before the path)
python -m pip install -r requirements.txt
jupyter notebook

@xeyaldunyasi
Copy link

xeyaldunyasi commented Oct 3, 2018

some steps that I had to take in between the commands provided:
(after installation of virtualenv)
cd digital-cash/venv/Scripts
activate (venv> appears in front of the command line)
cd digital-cash
py -m pip install -r requirements.txt (installs necessary files)
jupyter notebook

@justinmoon
Copy link
Owner Author

I updated the README.md to include Windows instructions. Going to leave this issue open in case anyone has issues with it ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

5 participants