Difference between revisions of "Sharing files with Python/ru"

Created page with "Python часто обновляется, поэтому если вы получите какие-либо ошибки при выполнении приведенной в..."
(Created page with "В этом случае сервер будет находиться на порту 9000.")
Tags: Mobile web edit Mobile edit
(Created page with "Python часто обновляется, поэтому если вы получите какие-либо ошибки при выполнении приведенной в...")
Line 101: Line 101:




Python is often updated so if you get any errors running the command above you can alternatively try:
Python часто обновляется, поэтому если вы получите какие-либо ошибки при выполнении приведенной выше команды, то можете попробовать следующее:
  python -c 'from twisted.web.server import Site; from twisted.web.static import File; from twisted.internet import reactor; reactor.listenTCP(8000, Site(File("."))); reactor.run()'
  python -c 'from twisted.web.server import Site; from twisted.web.static import File; from twisted.internet import reactor; reactor.listenTCP(8000, Site(File("."))); reactor.run()'
break it off with '''CTRL+Z''' and then type '''bg''' to start it in the background.
прервите его с помощью '''CTRL+Z''', а затем введите '''bg''', чтобы запустить в фоновом режиме.


Here the server will be on port 8000 you can change it to your liking.
Here the server will be on port 8000 you can change it to your liking.
translator
10,713

edits