forked from opencobra/cobratoolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d39375
commit c94e921
Showing
4 changed files
with
54 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Requirements | ||
|
||
## Can I check if everything is properly set up before I start? | ||
|
||
#### MATLAB | ||
|
||
Please ensure that you have a working `MATLAB` [installation](https://nl.mathworks.com/help/install/). | ||
|
||
#### git | ||
|
||
You can check if you have a working installation of `git` by typing in the `Terminal` (on `linux` and `macOS`) or `Git Bash` (in `Windows`): | ||
```bash | ||
$ git --version | ||
``` | ||
If installed properly, this will return `git version 2.10.1 [...]` or similar with another version number. | ||
|
||
#### curl | ||
|
||
You can check if you have a working installation of `curl` by typing in the terminal (or GUI Bash): | ||
```bash | ||
$ curl --version | ||
``` | ||
which will return `curl 7.51.0 [...]` or similar with another version number if installed properly. | ||
|
||
## What if my system is not properly configured? | ||
|
||
**Linux (Ubuntu or Debian)** | ||
|
||
```bash | ||
$ sudo apt-get install git-all curl | ||
``` | ||
|
||
**macOS** | ||
|
||
In order to install `git`, install the [Xcode Command Line Tools](http://osxdaily.com/2014/02/12/install-command-line-tools-mac-os-x/). For `curl`, follow the instructions [here](http://macappstore.org/curl/). | ||
|
||
**Windows** | ||
|
||
Please download the `git` tools for Windows from [here](https://git-scm.com/download). During the installation process, please ensure that you select **Use Git from the Windows Command Prompt**. In addition, please make sure that you select **Checkout as-is, commit Unix-style line endings**. | ||
|
||
<div align="center"> | ||
<img src="assets/installation_git_windows_0.png" height="280px"> <img src="assets/installation_git_windows_1.png" height="280px">. | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters