Ejemplo n.º 1
0
        /// <summary>
        /// Creates a virtual environment. If virtualenv or pip are not
        /// installed then they are downloaded and installed automatically.
        /// </summary>
        public static async Task CreateAndInstallDependencies(
            IServiceProvider provider,
            IPythonInterpreterFactory factory,
            string path
            )
        {
            factory.ThrowIfNotRunnable("factory");

            var cancel          = CancellationToken.None;
            var ui              = new VsPackageManagerUI(provider);
            var interpreterOpts = provider.GetComponentModel().GetService <IInterpreterOptionsService>();
            var pm              = interpreterOpts?.GetPackageManagers(factory).FirstOrDefault(p => p.UniqueKey == "pip");

            if (pm == null)
            {
                throw new InvalidOperationException(Strings.PackageManagementNotSupported);
            }
            if (!pm.IsReady)
            {
                await pm.PrepareAsync(ui, cancel);

                if (!pm.IsReady)
                {
                    throw new InvalidOperationException(Strings.VirtualEnvCreationFailed.FormatUI(path));
                }
            }

            bool hasVirtualEnv = (await factory.HasModuleAsync("venv", interpreterOpts)) ||
                                 (await factory.HasModuleAsync("virtualenv", interpreterOpts));

            if (!hasVirtualEnv)
            {
                if (!await Install(provider, factory))
                {
                    throw new InvalidOperationException(Strings.VirtualEnvCreationFailed.FormatUI(path));
                }
            }

            await ContinueCreate(provider, factory, path, false, PackageManagerUIRedirector.Get(pm, ui));
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Creates a virtual environment. If virtualenv or pip are not
        /// installed then they are downloaded and installed automatically.
        /// </summary>
        public static async Task CreateAndInstallDependencies(
            IServiceProvider provider,
            IPythonInterpreterFactory factory,
            string path
            )
        {
            factory.ThrowIfNotRunnable("factory");

            var cancel = CancellationToken.None;
            var ui     = new VsPackageManagerUI(provider);
            var pm     = factory.PackageManager;

            if (pm == null)
            {
                throw new InvalidOperationException(Strings.PackageManagementNotSupported);
            }
            if (!pm.IsReady)
            {
                await pm.PrepareAsync(ui, cancel);

                if (!pm.IsReady)
                {
                    throw new InvalidOperationException(Strings.VirtualEnvCreationFailed.FormatUI(path));
                }
            }

            var modules = await factory.FindModulesAsync("virtualenv", "venv");

            bool hasVirtualEnv = modules.Contains("virtualenv") || modules.Contains("venv");

            if (!hasVirtualEnv)
            {
                if (!await Install(provider, factory))
                {
                    throw new InvalidOperationException(Strings.VirtualEnvCreationFailed.FormatUI(path));
                }
            }

            await ContinueCreate(provider, factory, path, false, PackageManagerUIRedirector.Get(pm, ui));
        }