diff --git a/SimpleFTP/SimpleFTP.ps1 b/SimpleFTP/SimpleFTP.ps1 index 1f57008..80fbed4 100644 --- a/SimpleFTP/SimpleFTP.ps1 +++ b/SimpleFTP/SimpleFTP.ps1 @@ -1,5 +1,16 @@ -# Is working for video files? -python3 -m pyftpdlib +# Create virtual environment +if (-not (Test-Path venv)) { + virtualenv venv +} + +# Activate virtual environment +.\venv\Scripts\activate.ps1 + +# Install dependencies +pip install pyftpdlib + +# Run FTP server +python -m pyftpdlib # Not working for streaming video files # twistd -n ftp -r . \ No newline at end of file