huseinzol05 / Stock-Prediction-Models

Gathers machine learning and deep learning models for Stock forecasting including trading bots and simulations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How do I run the code????

maverickteckh opened this issue · comments

I have absolutely no clue how to run the code and I don't have experience with python or jyputer notebook????? Help!

Hey!
Well, you would need to follow some steps (recommended):

  1. Install python if you do not have it, and create a virtual environment in the same place as where you have the repository in your local file system: python3 -m venv venv.
  2. Activate the environment: source venv/bin/activate. This command will work for Linux & Mac, for Windows would be: venv/scripts/activate.
  3. Install jupyter notebook: pip3 install jupyter, and run it: jupyter notebook.
  4. Now you can go to the .ipynb files, install the dependencies (would have to search for each of them in google), and run the cells!

Anything else let me know if you want @Maxwick456 !