Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
silkaj
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
python
silkaj
Merge requests
!40
[enh]
#23
: doc: provide virtual env installation process.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[enh]
#23
: doc: provide virtual env installation process.
pyenv_doc
into
master
Overview
3
Commits
1
Pipelines
0
Changes
1
Merged
Moul
requested to merge
pyenv_doc
into
master
8 years ago
Overview
3
Commits
1
Pipelines
0
Changes
1
Expand
Could you try if it works fine on your side
.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
9bf26c4c
1 commit,
7 years ago
1 file
+
39
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/doc/install_pyenv.md
0 → 100644
+
39
−
0
Options
# Install Silkaj on a Python environment
## Install Pyenv
### Retrieve pyenv sources
```
bash
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
```
### Handle shell modifications: point 2,3 and 4.
-
[
Follow pyenv install documentation
](
https://github.com/pyenv/pyenv#installation
)
### Install latest Python version and create pyenv
```
bash
pyenv
install
3.6.0
pyenv shell 3.6.0
pyenv virtualenv silkaj-env
```
## Install Silkaj
### Retrieve silkaj sources
```
bash
git clone https://github.com/duniter/silkaj.git
cd
silkaj
```
### Install dependencies and store them on pyenv environement
```
bash
pip
install
-r
requirements.txt
--upgrade
pyenv rehash
```
### Activate pyenv and run silkaj
```
bash
pyenv activate silkaj-env
./silkaj
```
Loading