- Data: Data has to downloaded online. Due to large size of the data it has been ignored from the source control.
For the model, data can contains parameters like data, open, close, high, low, and adjusted close.
- Miniconda should be installed on your system. You can download Miniconda from the official Miniconda website.
Follow these steps to set up the project environment and install the required packages.
- Download the Miniconda installer for your operating system from the Miniconda website.
- Run the installer and follow the installation instructions.
-
Open your terminal or command prompt and move to the preferred directory as your virtual environment will be set up inside your current working directory.
-
Create a new conda environment with Python 3.8 (or your preferred version) by running the following command:
conda create --prefix ./env
-
Activate the newly created environment:
bash conda activate ./env
-
Ensure you are in the root directory of your project where the
requirements.txt
file is located. -
Install the required packages using the following command:
pip install -r requirements.txt
-
Install X-Code setup tools
xcode-select --install
-
Install tensorflow and its dependencies
conda install -c apple tensorflow-deps pip install tensorflow-macos pip install tensorflow-metal
-
Install jupyter deps and run jupyter notebook from where you can access the model
conda install -c conda-forge -y pandas jupyter jupyter notebook
- []