File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ source <(hpecp autocomplete bash) # setup autocompletion
10
10
hpecp configure-cli
11
11
```
12
12
13
+ ### Install from branch
14
+
15
+ pip install --upgrade git+https://github.com/hpe-container-platform-community/hpecp-client@branch_name
16
+
13
17
#### Mock Rest Service
14
18
15
19
- First, open a terminal, then run:
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ RUN sudo apt-get update \
10
10
11
11
# FIXME: Python 3.9 returns errors with pip
12
12
RUN echo "Installing python modules" \
13
- && for v in 2 3 3.5 3.6 3.7 3.8; do python${v} -m pip install -U pylint pytest mock nose flake8-docstrings flake8-per-file-ignores==0.8.1; done \
13
+ && for v in 2 3 3.5 3.6 3.7 3.8; do python${v} -m pip install -U ipython pylint pytest mock nose flake8-docstrings flake8-per-file-ignores==0.8.1 isort ; done \
14
14
&& for v in 3 3.5 3.6 3.7 3.8; do python${v} -m pip install -U black; done \
15
15
&& sudo ln -s /home/theia/.local/bin//black /bin/ \
16
16
&& for v in 2 3 3.5 3.6 3.7 3.8; do python${v} -m pip install -r /tmp/requirements.txt; done
17
17
18
18
RUN echo 'PATH=$PATH:/home/theia/.local/bin/' >> /home/theia/.bashrc
19
19
20
- ENV PYTHONPATH=/home/project:$PYTHONPATH
20
+ ENV PYTHONPATH=/home/project:$PYTHONPATH
You can’t perform that action at this time.
0 commit comments