Note about Antivirus when can’t install a package // Resolve #916

This commit is contained in:
Ivan Kravets
2017-03-10 00:38:04 +02:00
parent 2cd3592a49
commit 23ac02bea1
2 changed files with 5 additions and 3 deletions

View File

@ -14,7 +14,7 @@
import sys
VERSION = (3, 3, "0a14")
VERSION = (3, 3, "0a15")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@ -94,8 +94,10 @@ class UndefinedPackageVersion(PlatformioException):
class PackageInstallError(PlatformioException):
MESSAGE = "Can not install '{0}' with version requirements '{1}' "\
"for your system '{2}'"
MESSAGE = "Could not install '{0}' with version requirements '{1}' "\
"for your system '{2}'.\n"\
"If you use Antivirus, it can block PlatformIO Package "\
"Manager. Try to disable it for a while."
class FDUnrecognizedStatusCode(PlatformioException):