I try to save the changes in CSS on my computer so that after reloading the web page the changes remain.
The tutorial on developers.google.com says:
"Start a local web server in ~ / Desktop / app. You’ll prefer."
cd ~/Desktop/app python -m SimpleHTTPServer So, I use IDE PyCharm, I don’t know how to execute this command through it, although I installed SimpleHTTPServer
In the command line in the desired folder when I run the above command, I get
no module named SimpleHTTPServer When executing a command
pip install SimpleHTTPServer mistake
Collecting SimpleHTTPServer Could not find a version that satisfies the requirement SimpleHTTPServer (from versions: ) No matching distribution found for SimpleHTTPServer The question how to do what google suggests can be to install another module for the http server, and how best to do it through the IDE?