Skip to content

Commit e53792f

Browse files
Cleanup and align code examples
1 parent dcfd141 commit e53792f

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

python-net/getting-started/installation.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ To install the package, open a terminal and run the following command:
2424
py -m pip install groupdocs-total-net
2525
```
2626
{{< /tab >}}
27-
{{< tab "macOS" >}}
28-
```bash
29-
python3 -m pip install groupdocs-total-net
30-
```
31-
{{< /tab >}}
3227
{{< /tabs >}}
3328

3429
When running the command on Windows, you can expect an output similar to the following:

python-net/getting-started/licensing-and-evaluation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ from groupdocs.conversion import License
6767

6868
def set_license_from_file():
6969
# Get absolute path to license file
70-
license_path = os.path.abspath("./GroupDocs.Total.PythonViaNET.lic")
70+
license_path = os.path.abspath("./GroupDocs.Total.lic")
7171

7272
# Instantiate License and set the license
7373
license = License()
@@ -87,7 +87,7 @@ from groupdocs.conversion import License
8787

8888
def set_license_from_stream():
8989
# Get absolute path to license file
90-
license_path = os.path.abspath("./GroupDocs.Total.PythonViaNET.lic")
90+
license_path = os.path.abspath("./GroupDocs.Total.lic")
9191

9292
# Create a readable steam
9393
with open(license_path, "rb") as license_stream:

0 commit comments

Comments
 (0)