forked from platformio/platformio-core
Note about Antivirus when can’t install a package // Resolve #916
This commit is contained in:
@ -14,7 +14,7 @@
|
||||
|
||||
import sys
|
||||
|
||||
VERSION = (3, 3, "0a14")
|
||||
VERSION = (3, 3, "0a15")
|
||||
__version__ = ".".join([str(s) for s in VERSION])
|
||||
|
||||
__title__ = "platformio"
|
||||
|
@ -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):
|
||||
|
Reference in New Issue
Block a user