This commit is contained in:
dosangyoon
2022-08-05 14:34:46 +09:00
parent 40534b87d5
commit fe159bac34
3 changed files with 23 additions and 2 deletions

View File

@@ -1,2 +1,13 @@
# StockPredictor # 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
View File

@@ -0,0 +1,7 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}

View File

@@ -5,7 +5,10 @@ pandas_datareader
bs4 bs4
pywin32 pywin32
ipywidgets==7.0.0 ipywidgets==7.0.0
keras #keras
#https://www.lfd.uci.edu/~gohlke/pythonlibs/#h5py #https://www.lfd.uci.edu/~gohlke/pythonlibs/#h5py
#pip install h5py-3.6.0-cp37-cp37m-win32.whl #pip install h5py-3.6.0-cp37-cp37m-win32.whl
image-classifiers #image-classifiers
fastapi
uvicorn