Error command failed with exit code 127 yarn

I'm trying to build something on gcloud, specifically a web site with Yarn and Node. This is the script I'm trying to run: "build:langs": "printenv && ls -lah node_modules/.bin &&

I’m trying to build something on gcloud, specifically a web site with Yarn and Node.

This is the script I’m trying to run:

"build:langs": "printenv && ls -lah node_modules/.bin && BABEL_ENV=test babel-node scripts/translate.js",

Via

$ yarn run build:langs

Which outputs https://gist.github.com/haf/ebc623bfce5520432c136e44496b58fb — the interesting bits here (formatted for readability):

Step #2 - "js-build-langs": 
PATH=/workspace/src/site.com/node_modules/.bin
  :/usr/local/share/.config/yarn/link/node_modules/.bin
  :/workspace/src/
...
total 40K
Step #2 - "js-build-langs": drwxr-xr-x 2 root root 4.0K Jun 3 19:18 .
Step #2 - "js-build-langs": drwxr-xr-x 1194 root root 36K Jun 3 19:19 ..
Step #2 - "js-build-langs": lrwxrwxrwx 1 root root 20 Jun 3 19:18 JSONStream -> ../JSONStream/bin.js
Step #2 - "js-build-langs": lrwxrwxrwx 1 root root 19 Jun 3 19:18 _mocha -> ../mocha/bin/_mocha
...
Step #2 - "js-build-langs": lrwxrwxrwx 1 root root 30 Jun 3 19:18 babel-node -> ../babel-cli/bin/babel-node.js
...
Step #2 - "js-build-langs": /bin/sh: 1: babel-node: not found
Step #2 - "js-build-langs": error Command failed with exit code 127.
Step #2 - "js-build-langs": info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

An in container builder:

Showing output from Google Container Builder

That’s not all, because in this freak-show, a few minutes (now: hours) earlier 😨:

enter image description here

The cloudbuild target looks like:

steps:
# JS from https://console.cloud.google.com/gcr/images/cloud-builders/GLOBAL/yarn?gcrImageListsize=50:
- name: gcr.io/cloud-builders/yarn:node-8.11.0
  waitFor: ["-"]
  id: js-install
  dir: src/site.com
  args: ["install"]

- name: gcr.io/cloud-builders/yarn:node-8.11.0
  waitFor: ["js-install"]
  id: js-build-prod
  dir: src/site.com
  args: ["run", "build:prod"]

- name: gcr.io/cloud-builders/yarn:node-8.11.0
  waitFor: ["js-build-prod"]
  id: js-build-langs
  dir: src/site.com
  args: ["run", "build:langs"]

And packages.json snip:

  "devDependencies": {
    "@babel/core": "^7.0.0-beta.49",
    "@babel/node": "^7.0.0-beta.49",

All in all, I’m very confounded. Why does it not work despite PATH containing the binary js file, which is executable non the less?? Why can it find webpack but not babel-node? Why can I run it locally even after a full git clean -fxd? And why would it work sometimes but not other times?

My gut is telling me this is some sort of race condition in GCB

Содержание

  1. yarn run + npm scripts #780
  2. Comments
  3. yarn can’t run scripts in package.json #1045
  4. Comments
  5. Yarn error command failed with exit code 127 about help HOT 1 OPEN
  6. Comments (1)
  7. Related Issues (20)
  8. Recommend Projects
  9. React
  10. Vue.js
  11. Typescript
  12. TensorFlow
  13. Django
  14. Laravel
  15. Recommend Topics
  16. javascript
  17. server
  18. Machine learning
  19. Visualization
  20. Recommend Org
  21. Facebook
  22. Microsoft
  23. Bitbucket pipeline fails with ‘
  24. 1 answer
  25. 1 accepted
  26. Error: Command /bin/sh failed with exit code 127 #15
  27. Comments
  28. Run the project to report an error
  29. Footer

yarn run + npm scripts #780

This might be a duplicate of #733 but I’m not sure.

In rust-lang/crates.io#457, we’re trying to move to yarn. It’s an ember app, and so relies on things like ember test to run tests.

That is, we have several npm scripts that, in my understanding, should be prefixed with yarn run . But on Travis, and possibly in other configurations, this seems to fail.

Am I Doing it Wrong, or is this a bug?

The text was updated successfully, but these errors were encountered:

Are you seeing an error message?

Also reported in #782

is what I get when I try yarn start .

Ah sorry, the rebase made Travis go away. If you look at the comments, @carols10cents shows an error.

On Oct 11, 2016, 22:36 -0400, Yojan Shrestha notifications@github.com, wrote:

error Command failed with exit code 127

is what I get when I try yarn start.

Taking a look at https://yarnpkg.com/en/docs/cli/run , the usage should be yarn run blah where blah is a key in the scripts object in package.json. I don’t think you want your yarn run s in the script blocks unless they need to reference other script items.

Try changing yarn run ember test in .travis.yml to yarn run test and
change «test»: «yarn run ember test» in package.json to «test»: «ember test» and see if that gets you closer.

@FLGMwt that would make sense, thanks. I’ve pushed a commit, we’ll see what travis says.

FWIW, I’m experiencing the same issue as @steveklabnik in the same context (i.e. ember commands).

For example, I have scripts in my package.json like this:

npm run test will run the script located at the test key in the scripts object (i.e. ember try:each ).

yarn run test does the following:

So it seems that there’s a disconnect where yarn run might not be correctly accessing the .bin folder in node_modules ?

FWIW, yarn run ember try:each DOES work, so it seems the issue is scoped to actually calling .bin commands from the scripts hash.

Seeing an similar issue. If the script in package.json is a single command it will run. If the command has arguments or is a compound command (or contains a space), the script fails with exit code 127 .

This should be fixed in #809

What’s yarn’s release schedule gonna look like? Any idea when that’ll hit a release?

Any eta on releasing this?

@scothis same problem here:

npm runs fine, but yarn errors out. I tried yarn run start as well and got the same results. If I remove server.js from the start script, the node repl starts up just fine.

As stated #809 will resolve this.

I am experiencing similar issue in Yarn version 0.17.8.

Basically, I cannot reference yarn run inside of one of my scripts, I have to use npm run .

This works! Referencing npm run inside of the build script

But this does not work, referencing yarn run inside of build script.

I am not sure if this issue was re-introduced at some point after #809 or if this is an entirely different issue.

  • I am running macOS Sierra 10.12.1
  • All dependencies are installed locally minus Yarn (so, either npm run gulp or yarn run gulp is necessary to execute)

If you are aware of an existing issue already addressing this please point me in that direction. I have found several very similar issues but they don’t quite address the same problem.

Has this been resolved? Im using buble (https://buble.surge.sh) trying to output code into a .js file like so;

I get the annoying (unnecessary) gibberish in my file.

@ElvisMagagula — That looks like a separate issue, could you please file a separate GitHub issue for it?

@kstoddar currently in the same position

Can anyone please help me with some information related to following.

events.js:182
throw er; // Unhandled ‘error’ event
^

Error: watch /home/pavan/ALPS/web-alps/public ENOSPC
at exports._errnoException (util.js:1022:11)
at FSWatcher.start (fs.js:1384:19)
at Object.fs.watch (fs.js:1410:11)
at createFsWatchInstance (/home/pavan/ALPS/web-alps/node_modules/chokidar/lib/nodefs-handler.js:37:15)
at setFsWatchListener (/home/pavan/ALPS/web-alps/node_modules/chokidar/lib/nodefs-handler.js:80:15)
at FSWatcher.NodeFsHandler._watchWithNodeFs (/home/pavan/ALPS/web-alps/node_modules/chokidar/lib/nodefs-handler.js:228:14)
at FSWatcher.NodeFsHandler._handleDir (/home/pavan/ALPS/web-alps/node_modules/chokidar/lib/nodefs-handler.js:407:19)
at FSWatcher. (/home/pavan/ALPS/web-alps/node_modules/chokidar/lib/nodefs-handler.js:455:19)
at FSWatcher. (/home/pavan/ALPS/web-alps/node_modules/chokidar/lib/nodefs-handler.js:460:16)
at FSReqWrap.oncomplete (fs.js:153:5)
error Command failed with exit code 1.

This error sometimes it appear and sometimes it doesn`t.

@pavankumarbijja this is a question for StackOverflow or Google. Google ENOSPC and you’ll get your answer 😉

Источник

yarn can’t run scripts in package.json #1045

I have a scripts in package.json

When I use npm , I use command npm run dev or npm start , everything work fine.
When I try yarn , I use command yarn run dev or yarn start , it’s not working.
Some message error:

How to fix it? Please help me?

The text was updated successfully, but these errors were encountered:

For the interim @kensupermen, do you have babel , babel-node , and webpack installed as dev dependencies for the project? If not, it’s better to do that than relying on those packages being globally installed. Also, it should fix your problem with yarn not finding the commands.

I know that this was supposed to be fixed in #809 but I still can’t run scripts. I use nvm so maybe it has something to do with it?

I tried in two different projects with the same results

Example: in one of the projects I have a simple npm run clean which is just rm -rf ./www and here is the output using 0.15.1

I am facing the same problems please let me know when the fix is released

I find wrapping the command in quotes works.

Of course this is awful to write and it’s not compatible with npm run .

@paltman and @neelbommisetty I found the same issue today and the quotes workaround suggested worked just fine. This was on Yarn 0.15.1. I was curious as to whether the fix was included in a newer version so set about upgrading yarn (installed via brew). I had trouble at first as brew complained about node being unlinked, but once this was resolved by following brew doctor’s instructions, I was able to upgrade yarn to 0.16.0. I can confirm the official fix is in place in this version, so the quotes workaround was no longer needed. I use n for node version management, not sure if that is confusing matters with yarns dependency on node in brew.

I earlier installed yarn via npm. and i faced this bug. But later i uninstalled and installed via installation script the same version 0.15.1 and the scripts started working

That’s so strange, maybe best to avoid installing via npm then — which makes sense as it is intended as an npm replacement anyway.

This is fixed for me on 0.16.1 & installed through npm .

Thanks @ahmedelgabri
I updated yarn on 0.16.1 and It’s working fine

Источник

Yarn error command failed with exit code 127 about help HOT 1 OPEN

i had this problem with yarn and tried reinstalling on the same folder as my project and it worked, just make sure your installing with admin and if you are not sure you can try «sudo apt install yarn».

  • [help] memory error in pkg nodejs game server! HOT 1
  • Node keeps updating on my system, then stops working altogether HOT 8
  • Nodejs no longer working HOT 1
  • Client certificate works in node 15.x, but not 16 HOT 1
  • What to do with CVE-2022-3786 and CVE-2022-3602 on node 16.18.1? HOT 1
  • The program exits without any error HOT 1
  • Installer unfindable HOT 2
  • reasonable to publish thousands of different events on an `EventEmitter`? (benchmarks added)
  • How to debug my own test code HOT 2
  • Error: Function not implemented.
  • ตัวติดจอตาม
  • Question about TerminateExecution()
  • Error with cookie parse
  • node:fs HOT 1
  • error for instance betweent main context and sub-context HOT 4
  • add feature to node for printing property name while each lookups
  • Get the js stack trace of a running nodejs process HOT 3
  • npm install HOT 1
  • Override the JSON stringify method in process.send()
  • HTTP Server — Events — RequestTimeout VS client abortion

Recommend Projects

React

A declarative, efficient, and flexible JavaScript library for building user interfaces.

Vue.js

🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

Typescript

TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

TensorFlow

An Open Source Machine Learning Framework for Everyone

Django

The Web framework for perfectionists with deadlines.

Laravel

A PHP framework for web artisans

Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

javascript

JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

Some thing interesting about web. New door for the world.

server

A server is a program made to process requests and deliver data to clients.

Machine learning

Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

Visualization

Some thing interesting about visualization, use data art

Some thing interesting about game, make everyone happy.

Recommend Org

Facebook

We are working to build community through open source technology. NB: members must have two-factor auth.

Microsoft

Open source projects and samples from Microsoft.

Источник

Bitbucket pipeline fails with ‘

not found’ error

Hi there, I’m trying to run `eslint` and `test` in my pipeline but they both fail with the following error:

This is my ` bitbucket-pipeline.yml` file with those specific steps (here is not properly indented, but it is in my actual file)

1 answer

1 accepted

I believe you received the error because the image you use doesn’t have react-scripts installed in it; hence the command was not found.

I found an article that explains this issue and workaround better here , which suggests you install the react-scripts as the example below in your YAML:

This should fix the issue; if not, I suggest you review and try the other suggested workaround on the page here.

You must be a registered user to add a comment. If you’ve already registered, sign in. Otherwise, register and sign in.

I don’t suggest using both npm and yarn at the same time. It should be one or the other, not both, wherever possible.

I suggest that the issue is that bitbucket pipeline steps do not share their files. Each step runs in a separate container.

So assuming you already have the correct dependencies in package.json, the error is splitting the steps up when the files from «install dependencies» are needed in the «test» step.

I would expect a pipeline like this:

It’s possible to share artifacts from one step to another, but in my experience it is simply faster to install the node_modules folder as needed in each step.
https://community.atlassian.com/t5/Bitbucket-questions/Bitbucket-pipeline-reuse-source-code-from-previous-step/qaq-p/1711660

You must be a registered user to add a comment. If you’ve already registered, sign in. Otherwise, register and sign in.

Источник

Error: Command /bin/sh failed with exit code 127 #15

Command /bin/sh failed with exit code 127

The text was updated successfully, but these errors were encountered:

I have the same problem

Can you provide more information? Xcode and CocoaPods versions.
Thanks for issue!

xcode: Version 10.2.1
cocopods: 1.5.3
error msg:
/Users/pxb/Library/Developer/Xcode/DerivedData/SwiftHub-awaevfgeokohkbdbqzanphnxlsdc/Build/Intermediates.noindex/SwiftHub.build/Debug-iphonesimulator/SwiftHub.build/Script-C762C6261E1D422B00C09EBD.sh: line 2: /Users/pxb/Downloads/SwiftHub-master: is a directory

Hi @BoxDengJZ
I updated building instructions, can you clone again and follow the instructions?
Thanks.

I fixed by delete Fabric and Crashlytics in PodFile , and then I delete the Fabric script in Build Phases.
I also delete SwiftLint script in Build Phases at hand.

I run some problems in building, to get this , I run bundle exec pod install —repo-update

I will try clone again and follow the instructions @khoren93

Your instruction is not working in my case

Run the project to report an error

Command /bin/sh failed with exit code 1

© 2023 GitHub, Inc.

You can’t perform that action at this time.

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.

Источник

yarn can’t run scripts in package.json #1045

Comments

th0j commented Oct 14, 2016 •

I have a scripts in package.json

When I use npm , I use command npm run dev or npm start , everything work fine.
When I try yarn , I use command yarn run dev or yarn start , it’s not working.
Some message error:

How to fix it? Please help me?

The text was updated successfully, but these errors were encountered:

geoffreydhuyvetters commented Oct 14, 2016 •

umamialex commented Oct 14, 2016

For the interim @kensupermen, do you have babel , babel-node , and webpack installed as dev dependencies for the project? If not, it’s better to do that than relying on those packages being globally installed. Also, it should fix your problem with yarn not finding the commands.

sebmck commented Oct 14, 2016

ahmedelgabri commented Oct 14, 2016

I know that this was supposed to be fixed in #809 but I still can’t run scripts. I use nvm so maybe it has something to do with it?

I tried in two different projects with the same results

Example: in one of the projects I have a simple npm run clean which is just rm -rf ./www and here is the output using 0.15.1

neelbommisetty commented Oct 16, 2016

I am facing the same problems please let me know when the fix is released

paltman commented Oct 18, 2016

I find wrapping the command in quotes works.

Of course this is awful to write and it’s not compatible with npm run .

andrewmaudsley commented Oct 19, 2016

@paltman and @neelbommisetty I found the same issue today and the quotes workaround suggested worked just fine. This was on Yarn 0.15.1. I was curious as to whether the fix was included in a newer version so set about upgrading yarn (installed via brew). I had trouble at first as brew complained about node being unlinked, but once this was resolved by following brew doctor’s instructions, I was able to upgrade yarn to 0.16.0. I can confirm the official fix is in place in this version, so the quotes workaround was no longer needed. I use n for node version management, not sure if that is confusing matters with yarns dependency on node in brew.

neelbommisetty commented Oct 19, 2016

I earlier installed yarn via npm. and i faced this bug. But later i uninstalled and installed via installation script the same version 0.15.1 and the scripts started working

andrewmaudsley commented Oct 20, 2016

That’s so strange, maybe best to avoid installing via npm then — which makes sense as it is intended as an npm replacement anyway.

ahmedelgabri commented Oct 20, 2016

This is fixed for me on 0.16.1 & installed through npm .

th0j commented Oct 25, 2016

Thanks @ahmedelgabri
I updated yarn on 0.16.1 and It’s working fine

Footer

© 2023 GitHub, Inc.

You can’t perform that action at this time.

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.

Источник

yarn run + npm scripts #780

Comments

steveklabnik commented Oct 12, 2016

This might be a duplicate of #733 but I’m not sure.

In rust-lang/crates.io#457, we’re trying to move to yarn. It’s an ember app, and so relies on things like ember test to run tests.

That is, we have several npm scripts that, in my understanding, should be prefixed with yarn run . But on Travis, and possibly in other configurations, this seems to fail.

Am I Doing it Wrong, or is this a bug?

The text was updated successfully, but these errors were encountered:

Daniel15 commented Oct 12, 2016

Are you seeing an error message?

nodesocket commented Oct 12, 2016

Also reported in #782

shri3k commented Oct 12, 2016

is what I get when I try yarn start .

steveklabnik commented Oct 12, 2016

Ah sorry, the rebase made Travis go away. If you look at the comments, @carols10cents shows an error.

On Oct 11, 2016, 22:36 -0400, Yojan Shrestha notifications@github.com, wrote:

error Command failed with exit code 127

is what I get when I try yarn start.

FLGMwt commented Oct 12, 2016

Taking a look at https://yarnpkg.com/en/docs/cli/run , the usage should be yarn run blah where blah is a key in the scripts object in package.json. I don’t think you want your yarn run s in the script blocks unless they need to reference other script items.

Try changing yarn run ember test in .travis.yml to yarn run test and
change «test»: «yarn run ember test» in package.json to «test»: «ember test» and see if that gets you closer.

steveklabnik commented Oct 12, 2016

@FLGMwt that would make sense, thanks. I’ve pushed a commit, we’ll see what travis says.

cafreeman commented Oct 12, 2016

FWIW, I’m experiencing the same issue as @steveklabnik in the same context (i.e. ember commands).

For example, I have scripts in my package.json like this:

npm run test will run the script located at the test key in the scripts object (i.e. ember try:each ).

yarn run test does the following:

So it seems that there’s a disconnect where yarn run might not be correctly accessing the .bin folder in node_modules ?

FWIW, yarn run ember try:each DOES work, so it seems the issue is scoped to actually calling .bin commands from the scripts hash.

scothis commented Oct 12, 2016

Seeing an similar issue. If the script in package.json is a single command it will run. If the command has arguments or is a compound command (or contains a space), the script fails with exit code 127 .

randycoulman commented Oct 12, 2016

This should be fixed in #809

steveklabnik commented Oct 12, 2016

What’s yarn’s release schedule gonna look like? Any idea when that’ll hit a release?

nodesocket commented Oct 13, 2016

Any eta on releasing this?

dougludlow commented Oct 13, 2016

@scothis same problem here:

npm runs fine, but yarn errors out. I tried yarn run start as well and got the same results. If I remove server.js from the start script, the node repl starts up just fine.

samccone commented Oct 13, 2016

As stated #809 will resolve this.

alhexanderad commented Nov 8, 2016

kstoddard commented Nov 22, 2016 •

I am experiencing similar issue in Yarn version 0.17.8.

Basically, I cannot reference yarn run inside of one of my scripts, I have to use npm run .

This works! Referencing npm run inside of the build script

But this does not work, referencing yarn run inside of build script.

I am not sure if this issue was re-introduced at some point after #809 or if this is an entirely different issue.

  • I am running macOS Sierra 10.12.1
  • All dependencies are installed locally minus Yarn (so, either npm run gulp or yarn run gulp is necessary to execute)

If you are aware of an existing issue already addressing this please point me in that direction. I have found several very similar issues but they don’t quite address the same problem.

ghost commented Nov 30, 2016

Has this been resolved? Im using buble (https://buble.surge.sh) trying to output code into a .js file like so;

I get the annoying (unnecessary) gibberish in my file.

Daniel15 commented Nov 30, 2016

@ElvisMagagula — That looks like a separate issue, could you please file a separate GitHub issue for it?

mamartins commented Jan 9, 2017

@kstoddar currently in the same position

pavankumarbijja commented Aug 7, 2017

Can anyone please help me with some information related to following.

events.js:182
throw er; // Unhandled ‘error’ event
^

Error: watch /home/pavan/ALPS/web-alps/public ENOSPC
at exports._errnoException (util.js:1022:11)
at FSWatcher.start (fs.js:1384:19)
at Object.fs.watch (fs.js:1410:11)
at createFsWatchInstance (/home/pavan/ALPS/web-alps/node_modules/chokidar/lib/nodefs-handler.js:37:15)
at setFsWatchListener (/home/pavan/ALPS/web-alps/node_modules/chokidar/lib/nodefs-handler.js:80:15)
at FSWatcher.NodeFsHandler._watchWithNodeFs (/home/pavan/ALPS/web-alps/node_modules/chokidar/lib/nodefs-handler.js:228:14)
at FSWatcher.NodeFsHandler._handleDir (/home/pavan/ALPS/web-alps/node_modules/chokidar/lib/nodefs-handler.js:407:19)
at FSWatcher. (/home/pavan/ALPS/web-alps/node_modules/chokidar/lib/nodefs-handler.js:455:19)
at FSWatcher. (/home/pavan/ALPS/web-alps/node_modules/chokidar/lib/nodefs-handler.js:460:16)
at FSReqWrap.oncomplete (fs.js:153:5)
error Command failed with exit code 1.

This error sometimes it appear and sometimes it doesn`t.

BYK commented Aug 8, 2017

@pavankumarbijja this is a question for StackOverflow or Google. Google ENOSPC and you’ll get your answer 😉

Источник

Discussion on: Run a React App in a Docker Container


Collapse

Expand


nonbeing profile image

Great article, just faced one problem:

Step 4/9 : RUN yarn run build
 ---> Running in 09a2e8108274
yarn run v1.15.2
$ react-scripts build
/bin/sh: react-scripts: not found
error Command failed with exit code 127.

To solve this, I just added RUN npm install react-scripts -g --silent before the RUN yarn run build in the Dockerfile, and everything ran perfectly then on.


Collapse

Expand


nickjones profile image

I had the same issue because I use don’t use yarn. Solved by deleting node-modules, package-lock.json, and run the command yarn (this is similar to npm install). Then as he stated up above test the installation with yarn start.

gianbuschor

Yarn error command failed with exit code 127

Details

My yarn wont load for some reason. I always get a error with command failed with exit code 127. I cant seem to find a solution on the yarn helpdesk tho….how can i fix this problem?

gians-macbook-pro:web gianbuschor$ yarn deploy
yarn run v1.22.19
$ cross-env ASSET_PREFIX=/metaplex/ yarn build && yarn deploy:gh
/bin/sh: cross-env: command not found
error Command failed with exit code 127.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
gians-macbook-pro:web gianbuschor$ 

Node.js version

v16.15.1

Example code

yarn deploy

Operating system

MacOS

Scope

code

Module and version

Not applicable.

gabrielefigenio

i had this problem with yarn and tried reinstalling on the same folder as my project and it worked, just make sure your installing with admin and if you are not sure you can try «sudo apt install yarn».

AlexGeoDev

Hello @gabrielefigenio, I had the same problem, I installed yarn like you said and not fixed, after that I read again my package.json and found my error, I wrote «netx», after chage for «next», I run again «yarn build » and all is ok. Thanks

Понравилась статья? Поделить с друзьями:

Читайте также:

  • Error command failed gradlew bat app installdebug preactnativedevserverport 8081
  • Error command errored out with exit status 128
  • Error command errored out with exit status 1 python
  • Error command errored out with exit status 1 pycharm
  • Error command errored out with exit status 1 dlib

  • 0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии