Skip to content

Commit 459b7d2

Browse files
authored
Merge pull request #1 from pelson/install_pip_with_conda
Ensure that pip is installed into the conda environment.
2 parents 314e7ff + dc18577 commit 459b7d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/installer/stages/platformio-core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export default class PlatformIOCoreStage extends BaseStage {
146146
return new Promise((resolve, reject) => {
147147
runCommand(
148148
'conda',
149-
['create', '--yes', '--quiet', 'python=2', '--prefix', core.getEnvDir()],
149+
['create', '--yes', '--quiet', 'python=2', 'pip', '--prefix', core.getEnvDir()],
150150
(code, stdout, stderr) => {
151151
if (code === 0) {
152152
return resolve(stdout);

0 commit comments

Comments
 (0)