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
{{ message }}
This repository was archived by the owner on May 27, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+23-10Lines changed: 23 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,23 +5,36 @@ Fields and values are specified in a CSV file, and optionally a filter script ca
5
5
## System Requirements
6
6
* Python 3.6 or later ([Python Installation Steps](python_installation_steps.md))
7
7
8
-
## Python Package Dependencies:
9
-
* pysim
10
-
* Right now it uses my fork, because of this commit (https://github.com/andrew-ma/pysim/commit/2f10406c9d3ba42787648fb0060475222531d905), and official repo doesn't accept pull requests on Github
11
-
* pandas
12
8
13
9
## Installation
14
-
> _Windows_: substitute `python3` with `python`
10
+
### Method #1: Source Distribution (`.tar.gz` file)
> _Windows_: if you get a "swig.exe" error while running the installation command, you will need to download the swig prebuilt executable (http://www.swig.org/download.html), extract the zip, and add the folder to your PATH. Try running the installation steps again, and if it fails with a "Visual Studio Build Tools" error, then you will need to download https://visualstudio.microsoft.com/visual-cpp-build-tools/, install it, and select the "Desktop development with C++"
30
+
31
+
32
+
Linux
33
+
```
34
+
python3 -m pip install --upgrade -e .
21
35
```
22
-
> _Linux_: if you get a "swig: not found" error while running the installation command, first ensure that Python 3.6 or later is installed ('`python3 --version`'). If so, install swig with '`sudo apt install swig`' and retry the installation command.
23
36
24
-
> _Windows_: if you get a "swig.exe" error while running the installation command, you will need to download the swig prebuilt executable (http://www.swig.org/download.html), extract the zip, and add the folder to your PATH. Then try running the installation again, and if it fails with a "Visual Studio Build Tools" error, then you will need to download https://visualstudio.microsoft.com/visual-cpp-build-tools/, install it, and select the "Desktop development with C++"
37
+
> _Linux_: if you get a "swig: not found" error while running the installation command, first ensure that Python 3.6 or later is installed (`python3 --version`). If so, install swig with `sudo apt install swig` and retry the installation command
Copy file name to clipboardExpand all lines: development.md
+6-19Lines changed: 6 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,34 +3,21 @@
3
3
## System Requirements
4
4
* Python 3.6 or later ([Python Installation Steps](python-installation.md))
5
5
6
-
## Python Package Dependencies:
7
-
* pysim
8
-
* Currently uses my fork, because of this commit (https://github.com/andrew-ma/pysim/commit/2f10406c9d3ba42787648fb0060475222531d905), and official repo doesn't accept pull requests on Github
9
-
* pandas
10
-
11
-
## Install for Development
12
-
```
13
-
git clone -b main https://github.com/andrew-ma/sim_csv_script
14
-
cd sim_csv_script
15
-
pip install -e .
16
-
```
17
-
18
-
## Uninstall everything including dependencies
19
-
```
20
-
pip uninstall sim_csv_script -y
21
-
pip uninstall -r requirements.txt -y
22
-
```
23
-
24
6
---
25
7
26
8
## Creating a Source Distribution
27
-
>Source distribution file ("sim_csv_script-VERSION.tar.gz") will be created in *dist/* folder
9
+
* Source distribution file (*`sim_csv_script*-VERSION.tar.gz`*) will be created in *dist/* folder
0 commit comments