Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
zesje
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Works on my machine
zesje
Commits
cc5286dd
Commit
cc5286dd
authored
5 years ago
by
Hugo Kerstens
Browse files
Options
Downloads
Patches
Plain Diff
Add new conda instructions to readme
parent
d54a41b0
No related branches found
Branches containing commit
No related tags found
1 merge request
!36
Master
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+7
-10
7 additions, 10 deletions
README.md
with
7 additions
and
10 deletions
README.md
+
7
−
10
View file @
cc5286dd
...
...
@@ -15,10 +15,11 @@ Install Miniconda by following the instructions on this page:
https://conda.io/miniconda.html
Create a Conda environment that you will use for installing all
of zesje's dependencies:
Make sure you cloned this repository and enter its directory. Then
create a Conda environment that will automatically install all
of zesje's Python dependencies:
conda create
-c conda-forge -n zesje-dev python=3.6 yarn
conda
env
create
# Creates an environment from environment.yml
Then,
*activate*
the conda environment:
...
...
@@ -31,10 +32,6 @@ Install all of the Javascript dependencies:
yarn install
Install all of the Python dependencies:
pip install -r requirements.txt -r requirements-dev.txt
Unfortunately there is also another dependency that must be installed
manually for now (we are working to bring this dependency into the
Conda ecosystem). You can install this dependency in the following way
...
...
@@ -145,10 +142,10 @@ If you use Atom, install the [linter-js-standard-engine](https://atom.io/package
### Adding dependencies
#### Server-side
If you start using a new Python library, be sure to add it to
`
requirements.txt`
. Python libraries for the testing are in
`requirements-dev.txt
`
.
The packages can be installed and updated in your environment by
`
pip
`
using
If you start using a new Python library, be sure to add it to
`
environment.yml
`
.
The packages can be installed and updated in your environment by
`
conda
`
using
pip install -r requirements.txt -r requirements-dev.txt
conda env update
#### Client-side
...
...
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