Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
WindEnergyToolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
toolbox
WindEnergyToolbox
Commits
355b0bbf
There was a problem fetching the pipeline summary.
Commit
355b0bbf
authored
8 years ago
by
mads
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox
parents
86f9968d
5a1d779c
No related branches found
No related tags found
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/update-conda-cluster.md
+44
-0
44 additions, 0 deletions
docs/update-conda-cluster.md
with
44 additions
and
0 deletions
docs/update-conda-cluster.md
0 → 100644
+
44
−
0
View file @
355b0bbf
# Update conda ```wetb_py3``` environment and ```wetb```
There are pre-configured miniconda/anaconda python environments installed on
Gorm and Jess at:
```
/home/python/miniconda3/envs/wetb_py3
```
Note that these refer to the home drives of Gorm and Jess respectively and thus
refer to two different directories (but are named the same).
Update the root Anaconda environment:
```
conda update --all
```
Activate the
```wetb_py3```
environment:
```
source activate wetb_py3
```
Update the
```wetb_py3```
environment:
```
conda update --all
```
Pull latest wetb changes and create re-distributable binary wheel package for
```
wetb_py3```:
```
cd /home/MET/repositories/tooblox/WindEnergyToolbox
git pull
python setup.py bdist_wheel -d dist/
```
And install the wheel package (
```.whl```
)
```
pip install --no-deps -U dist/wetb-X.Y.Z.post0.devXXXXXXXX-cp35m-linux_x86_64.whl
```
The option
```--no-deps```
is used here to avoid pip installing possible newer
versions of packages that should be managed by conda. This only works when all
dependencies of
```wetb```
are met (which is assumed by default for the
```
wetb_py3``` environment).
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment