Doubt regarding the update of the blog

Can anyone help me out in solving the issue of updating the covid blog
Actually i am getting the following error
Preparing to unpack …/chromium-browser-l10n_84.0.4147.105-0ubuntu0.18.04.1_all.deb …

100Unpacking chromium-browser-l10n (84.0.4147.105-0ubuntu0.18.04.1) …

101Selecting previously unselected package chromium-chromedriver.

102Preparing to unpack …/chromium-chromedriver_84.0.4147.105-0ubuntu0.18.04.1_amd64.deb …

103Unpacking chromium-chromedriver (84.0.4147.105-0ubuntu0.18.04.1) …

104Setting up chromium-codecs-ffmpeg-extra (84.0.4147.105-0ubuntu0.18.04.1) …

105Setting up chromium-browser (84.0.4147.105-0ubuntu0.18.04.1) …

106Setting up chromium-chromedriver (84.0.4147.105-0ubuntu0.18.04.1) …

107Setting up chromium-browser-l10n (84.0.4147.105-0ubuntu0.18.04.1) …

108Processing triggers for hicolor-icon-theme (0.17-2) …

109Processing triggers for mime-support (3.60ubuntu1) …

110Processing triggers for man-db (2.8.3-2ubuntu0.1) …

111W: --force-yes is deprecated, use one of the options starting with --allow instead.

112npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142

113npm WARN deprecated har-validator@5.1.5: this library is no longer supported

114npm WARN deprecated left-pad@1.3.0: use String.prototype.padStart()

115npm WARN deprecated request-promise-native@1.0.9: request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142

116/opt/hostedtoolcache/node/10.22.0/x64/bin/electron -> /opt/hostedtoolcache/node/10.22.0/x64/lib/node_modules/electron/cli.js

117/opt/hostedtoolcache/node/10.22.0/x64/bin/orca -> /opt/hostedtoolcache/node/10.22.0/x64/lib/node_modules/orca/bin/orca.js

118

119> electron@6.1.4 postinstall /opt/hostedtoolcache/node/10.22.0/x64/lib/node_modules/electron

120> node install.js

121

122+ orca@1.3.1

123+ electron@6.1.4

124added 284 packages from 314 contributors in 15.829s

125ERROR: Could not open requirements file: [Errno 2] No such file or directory: ‘./_notebooks/requirements.txt’

126WARNING: You are using pip version 20.2; however, version 20.2.1 is available.

127You should consider upgrading via the ‘/opt/hostedtoolcache/Python/3.6.11/x64/bin/python -m pip install --upgrade pip’ command.

128##[error]Process completed with exit code 1.

@rohitkamalr

Check line 125.

Best to investigate your actions workflow (for eg. in the /.github/workflows/update-nb.yaml) to see why is that file being called.

Also, can you share your repo link with me at hargun3045@gmail.com so that I can see if you have all the necessary files to run this action?

Ya I will share the repo to that email

@3045
Did you get as to what is wrong with the github actions

Hi @rohitkamalr,

Overall, your files are in good shape.

But, I think the issue is in this part of your workflow.

    - name: install dependencies
      run: |
        sudo apt-get update -y
        sudo apt-get -y --force-yes install chromium-chromedriver
        npm install -g electron@6.1.4 orca
        pip3 install matplotlib pandas numpy scipy seaborn papermill ipykernel jupyter folium plotly plotnine psutil pymc3 arviz xlrd altair altair_saver jinja2 selenium
        python3 -m ipykernel install --user --name python3
        sudo chmod -R 777 .

I will need to investigate it a little further. Will get back to you.

@rohitkamalr

I think your workflow is fine.

Maybe remove numpy & scipy in the line pip3 install... because you don’t need them.

Otherwise, I think you’re on the right track.

I’d suggest you go through this resource on github actions and tweak around till you get it working.

Ya now it is working
Thanks for the help