Create yfinance
Browse files
yfinance
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Create a virtual environment
|
2 |
+
python -m venv stock-predictor-env
|
3 |
+
source stock-predictor-env/bin/activate # On Windows use `stock-predictor-env\Scripts\activate`
|
4 |
+
|
5 |
+
# Install required packages
|
6 |
+
pip install pandas yfinance scikit-learn tensorflow gradio matplotlib
|