Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 1.63 KB

README.md

File metadata and controls

37 lines (32 loc) · 1.63 KB

Installation_Requirements

requirements.txt - Use this to install all the packages needed to run SNAW

How to Install Needed Packages for SNAW Web, Snaw Offline, and SNAW Neural Network

Setting Up a Python Virtual Environment with all Needed Python Packages Note: Anaconda is not compatible for this prerequisite.

  1. Install Python (version 3.7.4) from: https://www.python.org/downloads/release/python-374/
  2. Make sure Pip is up-to-date. Run command:
py -m pip install --upgrade pip
  1. Navigate to the directory where you would like to install the virtual environment.
  2. Run command py -m venv snaw (change ‘snaw’ to what you would like to name the virtual environment).
  3. Activate the environment by navigating to the file directory of your environment and running command:
.\Scripts\activate
  1. Verify that the virtual environment is running by looking on the left hand side of the bottom line. You should see the name of your virtual environment in parenthesis (Ex: (snaw) C:......)
  2. Visit SNAW’s ‘Installation_Requirements’ repository at: https://github.com/intelliChirp/Installation_Requirements
  3. Click the green ‘Clone or download’ button.
  4. Click on ‘Download ZIP’
  5. Copy requirements.txt file to your virtual environment directory.
  6. Navigate to your virtual environment’s directory.
  7. Type the command:
pip install -r requirements.txt
  1. Wait for the packages to install on your local machine.
  2. Done!

If you ran into trouble during the virtual environment setup, this website may be helpful: (https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/)