init
This commit is contained in:
11
README.md
11
README.md
@@ -1,2 +1,13 @@
|
||||
# StockPredictor
|
||||
|
||||
|
||||
## Troubleshoot
|
||||
1. OMP: Error #15: Initializing libiomp5.dylib, but found libiomp5.dylib already initialized.
|
||||
```
|
||||
import os
|
||||
os.environ[‘KMP_DUPLICATE_LIB_OK’]=’True’
|
||||
```
|
||||
추가하거나 다음 패키지를 설치한다.
|
||||
```
|
||||
> conda install nomkl
|
||||
```
|
||||
|
||||
7
StockPredictorAPI.py
Normal file
7
StockPredictorAPI.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from fastapi import FastAPI
|
||||
|
||||
app = FastAPI()
|
||||
|
||||
@app.get("/")
|
||||
async def root():
|
||||
return {"message": "Hello World"}
|
||||
@@ -5,7 +5,10 @@ pandas_datareader
|
||||
bs4
|
||||
pywin32
|
||||
ipywidgets==7.0.0
|
||||
keras
|
||||
#keras
|
||||
#https://www.lfd.uci.edu/~gohlke/pythonlibs/#h5py
|
||||
#pip install h5py-3.6.0-cp37-cp37m-win32.whl
|
||||
image-classifiers
|
||||
#image-classifiers
|
||||
|
||||
fastapi
|
||||
uvicorn
|
||||
|
||||
Reference in New Issue
Block a user