Pub installs kiosks in the running pub install dialog box

I run pub install, so I can use the intl package (I need to use the DateFormat class), which is part of dart sdk. I installed other packages in my project, such as an XML parser and presentation (similar to a js request). I had no problem running the installation of folders in the past when I installed the packages that are currently included in my project, but today it is just in the "run pub install" dialog box. I took the intl package declaration from the yaml file and tried to update, but it still freezes. I do not receive an error message or any indication that the request to install the package is actually being processed.

So, I ask, is there a known issue with the pub setup feature? What can I do during this time?

Here is my yaml code:

name: test_client description: A sample application dependencies: xml: git: https://github.com/prujohn/dart-xml.git presentation: git: https://github.com/CatalystItLabs/presentation.dart intl: sdk: intl 

Please note that xml and presentation packages are installed. I reached out to the Dartlang community via twitter, but I have not received an answer yet.

+4
source share
2 answers

Try using the git read-only version

 dependencies: xml: git: git://github.com/prujohn/dart-xml.git 

I try https before it doesn't work, but this one works

+2
source

I found a http://code.google.com/p/dart/issues/detail?id=6843 error about a similar problem. Feel free to have him follow the news of possible corrections.

+1
source

Source: https://habr.com/ru/post/1447604/


All Articles