You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+47-1
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Install electron and any other npm dependencies by:
24
24
npm install --runtime=electron --target=1.8.4
25
25
```
26
26
27
-
Create a new [virtual environment](http://docs.python-guide.org/en/latest/dev/virtualenvs/) to install all the python dependencies. If you don't have `mkvirtualenv` then check how to get it depending on your distribution. [Here](http://exponential.io/blog/2015/02/10/install-virtualenv-and-virtualenvwrapper-on-ubuntu/) is a guide for Ubuntu and [here]https://wiki.archlinux.org/index.php/Python/Virtual_environment) is one for ArchLinux.
27
+
Create a new [virtual environment](http://docs.python-guide.org/en/latest/dev/virtualenvs/) to install all the python dependencies. If you don't have `mkvirtualenv` then check how to get it depending on your distribution. [Here](http://exponential.io/blog/2015/02/10/install-virtualenv-and-virtualenvwrapper-on-ubuntu/) is a guide for Ubuntu and [here](https://wiki.archlinux.org/index.php/Python/Virtual_environment) is one for ArchLinux.
Now to start the application you need to type `npm start`.
41
41
42
+
### OSX
43
+
44
+
NOTE: While possible, the installation on OSX is still unsupported.
45
+
46
+
The <tldr> version is:
47
+
- install sqlcipher
48
+
- use a virtual env with python 3.6.x
49
+
- make sure pip installed everything it says it installed
50
+
- get your node under control with nvm, i tested 8.9
51
+
52
+
The following recipe has been tested using [Anaconda](https://conda.io). [VirtualEnv](https://virtualenv.pypa.io) works as well, refer to the documentations of those projects to install and use them.
53
+
54
+
Rotkehlchen uses an encrypted database called [SQLCipher](https://www.zetetic.net/sqlcipher/). Before we can proceed, we need to install it. Homebrew makes it simple:
55
+
56
+
$ brew update && brew install sqlcipher
57
+
58
+
If you wish to use Conda, use the following commands:
0 commit comments