Skip to content

Commit 014d3f6

Browse files
honzajavorekTC-MO
andcommitted
fix: break up command execution and further explanation
Co-authored-by: Michał Olender <[email protected]>
1 parent 765428f commit 014d3f6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

sources/academy/webscraping/scraping_basics_python/13_platform.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,19 @@ If we sent our code to a friend, they wouldn't know what to install to avoid imp
6060

6161
To share our project, we need to package it. The best way is following the official [Python Packaging User Guide](https://packaging.python.org/), but for this course, we'll take a shortcut with the Apify CLI.
6262

63-
Change to a directory where you start new projects in your terminal. Then, run the following command—it will create a new subdirectory called `warehouse-watchdog` for the new project, containing all the necessary files:
63+
Change to a directory where you start new projects in your terminal. Then, run the following command:
64+
65+
`$ apify create warehouse-watchdog --template=python-crawlee-beautifulsoup`
66+
67+
it will create a new subdirectory called `warehouse-watchdog` for the new project, containing all the necessary files:
6468

6569
```text
66-
$ apify create warehouse-watchdog --template=python-crawlee-beautifulsoup
6770
Info: Python version 0.0.0 detected.
6871
Info: Creating a virtual environment in ...
6972
...
7073
Success: Actor 'warehouse-watchdog' was created. To run it, run "cd warehouse-watchdog" and "apify run".
7174
Info: To run your code in the cloud, run "apify push" and deploy your code to Apify Console.
7275
Info: To install additional Python packages, you need to activate the virtual environment in the ".venv" folder in the actor directory.
73-
```
7476
7577
## Adjusting the template
7678

0 commit comments

Comments
 (0)