Merge pull request #77 from mmaridev/master

Python 3 alternative in readme
This commit is contained in:
RobinLinus 2019-02-18 22:20:27 +01:00 committed by GitHub
commit a3e751ee23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,10 @@ ShareDrop uses WebRTC only and isn't compatible with Safari browsers. Snapdrop u
# open a second shell: # open a second shell:
cd snapdrop/client cd snapdrop/client
# Python 2
python -m SimpleHTTPServer python -m SimpleHTTPServer
# Python 3
python3 -m http.server
``` ```
Now point your browser to http://localhost:8000. Now point your browser to http://localhost:8000.