FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
qlib/Dockerfile at main · microsoft/qlib · GitHub
microsoft
/
qlib
Public
Notifications
You must be signed in to change notification settings
Fork
7.7k
Star
48.8k
Code
Issues
304
Pull requests
177
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
qlib
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (22 loc) · 796 Bytes
Breadcrumbs
qlib
/
Dockerfile
Copy path
File metadata and controls
31 lines (22 loc) · 796 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
FROM
continuumio/miniconda3:latest
WORKDIR
/qlib
COPY
. .
RUN
apt-get update && \
apt-get install -y build-essential
RUN
conda create --name qlib_env python=3.8 -y
RUN
echo
"conda activate qlib_env"
>> ~/.bashrc
ENV
PATH /opt/conda/envs/qlib_env/bin:$PATH
RUN
python -m pip install --upgrade pip
RUN
python -m pip install numpy==1.23.5
RUN
python -m pip install pandas==1.5.3
RUN
python -m pip install importlib-metadata==5.2.0
RUN
python -m pip install
"cloudpickle<3"
RUN
python -m pip install scikit-learn==1.3.2
RUN
python -m pip install cython packaging tables matplotlib statsmodels
RUN
python -m pip install pybind11 cvxpy
ARG
IS_STABLE=
"yes"
RUN
if [
"$IS_STABLE"
=
"yes"
]; then \
python -m pip install pyqlib; \
else \
python setup.py install; \
fi
Back
|
FazBrowse Home
|
New Git URL