In this tutorial we'll learn how to solve the error " there is no package called ‘bslib’ " on Heroku deployment from GitHub repository .
This error occurs while deploying an app to Heroku from a GitHub repository . Your app works perfectly on your development machine, but it would fail on deployment, like this :
Step by step how to solve the error " there is no package called ‘bslib’ " on Heroku deployment from GitHub repository
First of all, notice that it seems to be an ENCODING problem : something does not look good with these symbols : " ‘bslib’ "
So probably you just have been trying of changing the encoding for your files, also at your machine or uploading again the files to your repository at GitHub.
However, nothing seems to help.
But if you take a closer look, the error states "...NO package called..." : the PACKAGES are not there.
And inside the word ‘bslib’ you can realise the name of the unknown package .
So check whether you are loading this package :
Happy programming.....
By Carmel Shvartzman