Skip to content

Commit da313c6

Browse files
committed
Remove prompts
1 parent 118c937 commit da313c6

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

tutorial/installation.rst

+13-13
Original file line numberDiff line numberDiff line change
@@ -16,37 +16,37 @@ To install with pip, you can run the command:
1616

1717
.. code-block:: console
1818
19-
$ pip install git+https://github.com/SimScaleGmbH/simscale-python-sdk.git
19+
pip install git+https://github.com/SimScaleGmbH/simscale-python-sdk.git
2020
2121
If you want to install an specifiy version, you can run:
2222

2323
.. code-block:: console
2424
25-
$ pip install git+https://github.com/SimScaleGmbH/[email protected]
25+
pip install git+https://github.com/SimScaleGmbH/[email protected]
2626
2727
To install from source, first clone the repository:
2828

2929
.. code-block:: console
3030
31-
$ git clone https://github.com/SimScaleGmbH/simscale-python-sdk.git
31+
git clone https://github.com/SimScaleGmbH/simscale-python-sdk.git
3232
3333
Then you can use setuptools to perform the installation:
3434

3535
.. code-block:: console
3636
37-
$ cd simscale-python-sdk
37+
cd simscale-python-sdk
3838
39-
$ python setup.py isntall --user
39+
python setup.py isntall --user
4040
4141
To test the installation, open a python prompt and import the library:
4242

4343
.. code-block:: console
4444
45-
$ python
45+
python
4646
4747
.. code-block:: python
4848
49-
>>> import simscale_sdk
49+
import simscale_sdk
5050
5151
If you don't receive a `ModuleNotFoundError`, then you should be good to go.
5252

@@ -71,26 +71,26 @@ It is recommended to use NuGet to install the latest versions:
7171

7272
.. code-block:: console
7373
74-
$ Install-Package RestSharp
74+
Install-Package RestSharp
7575
76-
$ Install-Package Newtonsoft.Json
76+
Install-Package Newtonsoft.Json
7777
78-
$ Install-Package JsonSubTypes
78+
Install-Package JsonSubTypes
7979
8080
In order to perform the installation, first clone the reposotiry:
8181

8282

8383
.. code-block:: console
8484
85-
$ git clone https://github.com/SimScaleGmbH/simscale-csharp-sdk.git
85+
git clone https://github.com/SimScaleGmbH/simscale-csharp-sdk.git
8686
87-
$ cd simscale-csharp-sdk
87+
cd simscale-csharp-sdk
8888
8989
Then generate the DLL using your preferred tool
9090

9191
.. code-block:: console
9292
93-
$ dotnet build
93+
dotnet build
9494
9595
The DLL can be found under the bin folder. You can link it in your project, then
9696
include the relevant namespaces:

0 commit comments

Comments
 (0)